.show-add-habit-form-btn {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.habit-list {
  height: 100%;
  padding: 0;
  margin-top: 0.5rem;
}

.habit-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  list-style-type: none;
  background-color: #937aff;
  border-radius: 5px;
  margin: 5px 0;
  color: white;
  box-sizing: content-box;
}

.habit-name {
  font-size: 1.5rem;
  word-break: break-all;
}

.habit-btns-wrapper {
  min-width: 85px;
  display: flex;
  justify-content: space-between;
  margin-left: 5px;
}

.progress-toggle-btn,
.delete-habit-btn {
  flex-shrink: 0;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  object-fit: contain;
  border: none;
}

.delete-habit-btn {
  background-color: #e0493e;
}

.progress-toggle-btn.done {
  background-color: #059d06;
}

.progress-toggle-btn.not-done {
  background-color: #e0493e;
}

.progress-toggle-btn.none {
  background-color: #acacac;
}
